home *** CD-ROM | disk | FTP | other *** search
/ STraTOS 1997 April & May / STraTOS 1 - 1997 April & May.iso / CD01 / GRAPHICS / POV_3 / SCENES / DOCSDEMO / HFDEMO.POV < prev    next >
Encoding:
Text File  |  2005-04-19  |  514 b   |  34 lines

  1. //
  2. // POV-Ray(tm) 3.0 tutorial example scene.
  3. // Copyright 1996 by the POV-Ray Team
  4. //
  5.  
  6. //
  7. // Note: image.pov has to be traced before this scene can be used.
  8. //
  9.  
  10. #include "colors.inc"
  11.  
  12. camera{
  13.   location <0, 2, -5>
  14.   look_at 0
  15. //  angle 30
  16. }
  17.  
  18. height_field {
  19.   tga "image.tga"
  20.   smooth
  21.   pigment { rgb <1,1,1> }
  22.   finish {
  23.     ambient 0.0
  24.     diffuse 0.5
  25.     specular 0.8
  26.     roughness 0.2
  27.   }
  28.   translate <-.5, -.5, -.5>
  29.   scale <17, 1.75, 17>
  30.  }
  31.  
  32. light_source{ <100,200,-200> rgb <1,1,1> }
  33.  
  34.